const runtime.mutexSpinning
8 uses
runtime (current package)
lock_spinbit.go#L61: mutexSpinning = 0x100
lock_spinbit.go#L188: next := (v &^ mutexSpinning) | mutexSleeping | mutexLocked
lock_spinbit.go#L209: if !weSpin && v&mutexSpinning == 0 && atomic.Casuintptr(&l.key, v, v|mutexSpinning) {
lock_spinbit.go#L210: v |= mutexSpinning
lock_spinbit.go#L244: next = next &^ mutexSpinning
lock_spinbit.go#L357: v&mutexSpinning == 0 || // no spinners means we must wake
lock_spinbit.go#L425: if v&mutexSpinning == 0 || mutexPreferLowLatency(l) {
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |